home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-02 | 342 b | 19 lines |
- #! smake
-
- include $(ROOT)/usr/include/make/commondefs
-
- TARGETS = traceback1 traceback2
- CFILES = myfile.c traceback.c test.c
-
- LCOPTS = -xansi -D__STDC__
-
- default all: $(TARGETS)
-
- include $(COMMONRULES)
-
- traceback1: myfile.c traceback.c
- $(CCF) -o $@ myfile.c traceback.c $(LDFLAGS) -lexc
-
- traceback2: test.c
- $(CCF) -o $@ test.c $(LDFLAGS)
-